Uses of Package
edu.uky.ai.tic.ai

Packages that use edu.uky.ai.tic.ai 
Package Description
edu.uky.ai.tic
This package provides the game of Tic Tac Toe and the tools for building AI players.
edu.uky.ai.tic.ai
This package contains the tools needed to build an AI for playing Tic Tac Toe that uses adversarial game tree search techniques.
  • Classes in edu.uky.ai.tic.ai used by edu.uky.ai.tic 
    Class Description
    Bot
    A bot is an artificially intelligent agent which, given the state of game, decides which move to make next.
  • Classes in edu.uky.ai.tic.ai used by edu.uky.ai.tic.ai 
    Class Description
    Bot
    A bot is an artificially intelligent agent which, given the state of game, decides which move to make next.
    Decision
    Represents a decision made by a Bot about which Move to make next and how many possible moves the bot considered while making its decision.
    GameTree
    A game tree is a representation of all the possible states that could occur during the play of game and how one state is reached from another.